context.cancelCtx.children (field)

8 uses

	context (current package)
		context.go#L403: 	if p.children != nil {
		context.go#L404: 		delete(p.children, child)
		context.go#L430: 	children map[canceler]struct{} // set to nil by the first cancel call
		context.go#L489: 			if p.children == nil {
		context.go#L490: 				p.children = make(map[canceler]struct{})
		context.go#L492: 			p.children[child] = struct{}{}
		context.go#L560: 	for child := range c.children {
		context.go#L564: 	c.children = nil